home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 April: Mac OS SDK / Dev.CD Apr 97 SDK1.toast / Development Kits (Disc 1) / Open Transport / Sample Code / NetFractal™ / ES stuff□ / DrawPoint.h < prev    next >
Encoding:
Text File  |  1996-11-19  |  322 b   |  27 lines  |  [TEXT/MPCC]

  1. //    DrawPoint.h
  2.  
  3. #pragma once
  4.  
  5.  
  6. #include "InPoint.h"
  7.  
  8. class APane;
  9.  
  10.  
  11. class DrawPoint :
  12.     public InPoint
  13. {
  14. protected:
  15.     APane            *fPane;
  16. public:
  17.                     DrawPoint(
  18.                         const char *protocol,
  19.                         const char *address,
  20.                         short port,
  21.                         APane *aPane);
  22.  
  23.     void            DoSomethingWithTheData(
  24.                         void *data,
  25.                         long size);
  26. };
  27.